home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / net / unix / Makefile next >
Encoding:
Makefile  |  1994-06-06  |  549 b   |  27 lines

  1. #
  2. # Makefile for the UNIX Protocol Family.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definition is now in the main makefile...
  9.  
  10. include ../../.config
  11. include ../../MakeVars
  12.  
  13. OBJS    = sock.o proc.o
  14.  
  15. unix.o: $(OBJS)
  16.     $(LD) -r -o unix.o $(OBJS)
  17.  
  18. dep:
  19.     $(CPP) -M *.c > .depend
  20.  
  21. #
  22. # include a dependency file if one exists
  23. #
  24. ifeq (.depend,$(wildcard .depend))
  25. include .depend
  26. endif
  27.